cwhaticando.com home DIY • Do it Yourself • Weekend Projects • BIG Projects • LITTLE Projects
become a creator share your how-to  

 

 

close window

How Do I Share My How-To?

It's really pretty easy, pictures and videos of the steps it takes to complete your project are stored on YouTube and picasaWeb. Once your "final" video is stored on YouTube, your project will show in the listings on the site. All this is controlled by our Creator's Tools. Basically, you start a project by writing up the project idea.

Step 1. Sign up for a free Creator's Account to gain access to the Creator's Tools.

Step 2. Login

Step 3. Push the "Create New Project" button on the Creator's Tools. Make a name (you can change it later) for your project. And describe your plans to use as notes to guide the creation of the steps.

Step 4. When you've finished providing all the steps to your project, shooting the videos and saving to google video via the Creator's Tool Panel, you are ready to write the introductory paragraph with an interesting story of how you did it, or how you do it in the case of a professional services presentation.

Step 5. Last but not least create and upload the video (to YouTube) which is the video that will be used to summarize the project. If you were building a robot, this final video would show the robot running around, doing fun things that will inspire others to create their version of your project.

That's it... Watch the views and ratings for your project pile up along with the sales commissions! Or get a customer because you showed how you remodel a house.

close window

FAQ About Becoming A Creator

Q. Why would I go to all that work, building something, then put it on a website like C What I Can Do? What's the point?

A. Actually, there are a couple of forms for a reward:

  1. You get rated as an author. Lots of good ratings looks good on your resume.
  2. You Make Money!

YOU Make Money when someone buys a part from You, and builds it into Their Version of your project. And, if YOU have a basement full of red leds and build a red led project - we'll send you customers who are inspired to build your blinking light device. If you sell PC boards, you may link to your own sales. Or sell your own kit online through your e-Bay store.

The same with books! We encourage project builders to make books. In fact, CwhatIcanDo is a great place to get rated as an author. 'Betcha get a better deal from your publisher...

Of course, it is possible that your project won't make you any money, because someone built something even cooler than yours (maybe even inspired by your project.) Maybe you just want to show your version of another project... It's done in the spirit of the web: Sharing ideas. And it's fun building a project on your own.



Build a Robot From A Power Wheelchair Part Two: Sensors      ...     32013 Views
Author's name: weRbots       

As situations would have it, I have installed and tested the unit with an IR Range Finder, simply by hooking up to the PC board already running the Power Chair.

From here I could install four sensors like this one, one at each corner, and as long as the speed was reasonably low, I believe the bot/power chair could navigate it`s way around fairly easily.

I believe I will do an experiment with sensors on the serial bus late, because I actually want to be able to remotely control the thing. I believe I want to take an existing remote controlled computer (that is programmable, of course) and use it to allow someone who is willing to hack their power chair, to be able to pull it up beside their car, or even drive it into a van on a ramp.

In the stories I hear, a simple inexpensive mechanism to give people a remote controlled chair would be a very big help to disabled power chair users everywhere.

Next stop: Wireless Remote Control!
Software Listing     
`------------------------------------------------------------------------------
` COMPILER DIRECTIVES / SYMBOLS
`------------------------------------------------------------------------------
#picaxe 18m2
` -------------------------------------------------
`--------------------------------------------------
` PicAxe 18M2
` Pinout and Definition of Legs
`=======================================
`(DAC / Touch / ADC / Out / In) C.2 leg 1
`(SRQ / Out) Serial Out / C.3 leg 2
`(In) / Serial In / C.4 leg 3
`(In) old reset is now signal C.5 leg 4
`---------------------------------------
`(gnd) 0v leg 5
`---------------------------------------
`(SRI / Out / In) B.0 leg 6
`(i2c sda / Touch / ADC / Out / In) B.1 leg 7
`(hserin / Touch / ADC / Out / In) B.2 leg 8
`(pwm / Touch / ADC / Out / In) B.3 leg 9
`=======================================
`---- package bottom -- direction up ----------
`=======================================
`(i2c scl / Touch / ADC / Out / In) B.4 leg 10
`(hserout / Touch / ADC / Out / In) B.5 leg 11
`(pwm / Touch / ADC / Out / In) B.6 leg 12
`(Touch / ADC / Out / In) B.7 leg 13
`---------------------------------------
`(vcc) +v leg 14
`---------------------------------------
`(Out / In) C.6 leg 15
`(Out / In) C.7 leg 16
`(Touch / ADC / Out / In) C.0 leg 17,in0
`(Touch / ADC / Out / In) C.1 leg 18,in1
`
`=======================================

`--------------------------------------------------------------
`--------------------------------------------------------------
` Actual Code starts Here
` by using a prototyping board we can make modifications
` which will allow us to test feasibility of sensors, etc
` using a power Chair Wheelchair
` This version gives us standard IR sensor
` It gives motor control f/b, l/r
`
` ***
` Make the changes on the PCB
`--------------------------------------------------------------
`--------------------------------------------------------------
`
` set these according to the way you wired your board
symbol in3 = b.7
symbol en34 = b.2

symbol in1 = b.5
symbol en12 = b.3

symbol IRdet = C.0

symbol i2csda = B.1
symbol i2cscl = B.4


symbol checkVal = w0 `where the sensors talk to the bot
symbol IRdetVal = w1 `where the bot sees ahead
symbol rRange = b4 `= (w2)range limits
symbol lRange = b5 `= (`w2)range limits
symbol Xcnt = b6 `= w3
symbol Ycnt = b7 `= (w3)
symbol maxStor = w5 `= w5

symbol adc_delay = 5 `Let ADC settle (can be 1 or 0)

let dirsb = %10111110
let pinsb = %00000000

pause 1000

` set motor drivers to known position
` turn all motor enables OFF
` stop everything
initi:
low en34,en12,in1,in3
let checkVal = 0 `init the check values register to 0
pause 1000

main:
`inline checks of robot condition
`stop, analyze, react appropriately
`make this check so fast it is a blur
`monitor the pb, then start the mover forward until strategy
gosub updateIR
if IRdetVal < 300 then
gosub moveForward
else gosub holderNute
endif
pause 500
goto main



`----------------------------------------------------
` Sensing Routines
`
updateIR:
`Look at the IR det- also monitor and interrupt
`load value in a register
`use a loop routine that watchs the register
`identify corner/front/back and apply appropriate reaction
readADC10 IRdet, IRdetVal
pause adc_delay
`sertxd("IRdetVal : ", #IRdetVal,13,10)
return



````````````````````````````````````````````````````````
`` :DRIVE CONTROL
`
moveForward:
high in3
high en34
pause 10
return

moveBackward:
low in3
high en34
pause 10
return

stopFB: ` stop forward/backward motion
low en34 `drive off
pause 10
return

turnRight:
high in1
high en12
pause 10
return
turnLeft:
low in1
high en12
pause 10
return

stopTurn: ` stop right/left motion
low en12 `drive off
pause 10
return

holderNute:
low en12 `drive off
low en34 `drive off
pause 10
gosub moveBackward
pause 200
low en12 `drive off
low en34 `drive off
gosub turnLeft
pause 300
low en12 `drive off
low en34 `drive off

`turn on a light or something
return
become a creator
close window

It's Easy To:

C - What - I - Can - Do

• Sign up - Get ID and Password

• Plan and Create a Project That Someone Might Enjoy and May Even Want to Build

• Link to your creation on your favorite social networking site or blog.

• Become famous! Because your projects get a lot of Hits!

 

No parts list with this project. Scan the 'Junkbox Reviewer' below! Find projects by clicking on their parts. Got something in your junkbox? Here's your spot to find something fun to make or build!

 

Junk Box Reviewer
Itching To Start Building A DIY Do It Yourself Project? Got Some Parts of Your Own in your JunkBox? Find projects by Surfing' the Parts List!
  
  
  
  
  
 
Andrei And Jim
Web Developers
Visit the project:

CwhatIcanDo Website


 
  
  
 
L 298 Compact Motor Driver Kit
Solarbotics
Visit the project:

Build the L298 H-Bridge Motor Control


 
  
 
Account On CwhatIcanDo
CwhatIcanDo.com
Visit the project:

HELP :: How To Create a Project


 
  
  
 
Microrobot Avoider Jr
Microrobot
Visit the project:

Robot Man: With Robot Demos


 
  
  
  
 
Brilliant Blue/Green LED
Surplus
Visit the project:

Converting a Flashlight to LED


 
  
 
PICAXE 8 Pin Motor Driver Board
SparkFun
Visit the project:

Easy Cheap Robot Weekend Project


 
  
 
Tracked Vehicle Chassis Kit
Tamiya
Visit the project:

Build Your Own Track Drive Robot


 
  
  
 
PICAXE 8 Pin Motor Driver Board
SparkFun
Visit the project:

Build Your Own Track Drive Robot


 
  
 
Infrared Proximity Sensor Short Range - Sharp GP2D120XJ00F
Sharp
Visit the project:

Build Your Own Track Drive Robot


 
  
 
PICAXE 8 Pin Motor Driver Board
SparkFun
Visit the project:

Build a Robot In 5 Minutes


 
  
 
Infrared Proximity Sensor Short Range - Sharp GP2D120XJ00F
Sharp
Visit the project:

Build a Robot In 5 Minutes


 
  
 
Gear Motor 2 - 224:1 Offset Shaft
SolarBotics
Visit the project:

Build a Robot In 5 Minutes


 
  
 
4 X AA Cell battery holder plus on/off switch
Powerize
Visit the project:

Build a Robot In 5 Minutes


 
  
 
PICAXE 8 Pin Motor Driver Board
SparkFun
Visit the project:

picAxe 8 bit Motor Controller: Look Inside


 
  
 
Infrared Proximity Sensor Short Range - Sharp GP2D120XJ00F
Sharp
Visit the project:

picAxe 8 bit Motor Controller: Look Inside


 
  
 
4 Section In-Ground Batting Net
battingnets.com
Visit the project:

Home Installation of a 4 Section In-Ground Batting Cage


 
  
  
  
  
  
  
  
 
Transformer 1k:8 ohm
xicon
Visit the project:

Pong)))))


 
  
 
PICAXE 8 Pin Motor Driver Board
SparkFun
Visit the project:

Robots Almost Anyone Can Afford


 
  
  
  
 
Morphibian Land Shark
Kid Galaxy
Visit the project:

Morphibian Land Shark


 
  
  
  
  
  
  
 
Parallax (Futaba) Continuous Rotation Servo
futaba (modified)
Visit the project:

How To Build a Robot in a Box


 
  
 
Parallax (Futaba) Standard Servo
futaba
Visit the project:

How To Build a Robot in a Box


 
  
  
  
 
PICAXE 8 Pin Motor Driver Board
SparkFun
Visit the project:

Weekend Project: Get Started With Robots


 
  
  
 
L298 Compact Motor Driver
Solarbotics
Visit the project:

Build a Respectable Autonomous Robot


 
  
 
Infrared Proximity Sensor Short Range - Sharp GP2D120XJ00F
Sharp
Visit the project:

Weekend Project: Get Started With Robots


 
  
  
 
PICAXE 18 Pin Power Project Board
picAxe
Visit the project:

Build a Robot From A Power Wheelchair


 
  
 
PICAXE 18M2 Microcontroller
picAxe
Visit the project:

Build a Robot From A Power Wheelchair


 
  
  
  
  
  
 
Solderless Breadboard For Uno
Jameco Valupro
Visit the project:

Arduino Development VS PicAxe Development


 
  
 
USB 2/0Video Capture Device
SIIG
Visit the project:

On Line Neighborhood Watch


 
  
  
  
 
Eurocard IC Pattern
Velleman
Visit the project:

On Line Neighborhood Watch


 
  
 
40 kHz Weatherproof Transducer
Audiowell Electronics
Visit the project:

Pong)))))


 
  
 
PICAXE 18M2 Microcontroller
picAxe
Visit the project:

Autonomous Robot PVC "Pickup Truck"


 
  
 
Power Amplifier
ST Micro
Visit the project:

Pong)))))


 
  
  

By Creators
WeRbots: i-Mon App
WeRbots: Pong)))))
By Keywords
Ajax: battle
Android: battle
BEAM Robots: battle
Convert Your Flashlight to LED: Converting a Flashlight to LED
How To Build Cheap Bots: Robots Almost Anyone Can Afford
How To Build Cheap Bots: How To Build a Robot in a Box
How To Website: Tour This Website
How To Website: CwhatIcanDo Website
Infrared Proximity Sensor: Build Your Own Track Drive Robot
Quick Build Robot: Build a Robot In 5 Minutes
robot bending: Morphibian Land Shark
Robot Motor Control: Robot Basics
Robot Motor Control: Buggy Bot: Wire Frame Bot Body
Robots: Robot Basics
Rumble Bot Conversions: Robots Almost Anyone Can Afford
Select or type in a Keyword: Converting a Flashlight to LED
web 2.0 site: CwhatIcanDo Website
Weekend Project Robots: Easy Cheap Robot Weekend Project

Click To Expand / Contract Menus. View by Creator, Category, Keywords or Number of Views.

©Copyright 2008 - , CwhatIcanDo.com, all rights reserved.